Autogenerated HTML docs for v1.7.11-rc0-100-g5498c 
diff --git a/RelNotes/1.7.10.4.txt b/RelNotes/1.7.10.4.txt new file mode 100644 index 0000000..154bba4 --- /dev/null +++ b/RelNotes/1.7.10.4.txt 
@@ -0,0 +1,25 @@ +Git v1.7.10.4 Release Notes +=========================== + +Fixes since v1.7.10.3 +--------------------- + + * The message file for Swedish translation has been updated a bit. + + * A name taken from mailmap was copied into an internal buffer + incorrectly and could overun the buffer if it is too long. + + * A malformed commit object that has a header line chomped in the + middle could kill git with a NULL pointer dereference. + + * An author/committer name that is a single character was mishandled + as an invalid name by mistake. + + * The progress indicator for a large "git checkout" was sent to + stderr even if it is not a terminal. + + * "git grep -e '$pattern'", unlike the case where the patterns are + read from a file, did not treat individual lines in the given + pattern argument as separate regular expressions as it should. + +Also contains minor fixes and documentation updates. 
diff --git a/RelNotes/1.7.11.txt b/RelNotes/1.7.11.txt index 7931f77..04cf264 100644 --- a/RelNotes/1.7.11.txt +++ b/RelNotes/1.7.11.txt 
@@ -106,6 +106,9 @@  * More lower-level commands learned to use the streaming API to read  from the object store without keeping everything in core.   + * The weighting parameters to suggestion command name typo have been + tweaked, so that "git tags" will suggest "tag?" and not "stage?". +  * Because "sh" on the user's PATH may be utterly broken on some  systems, run-command API now uses SHELL_PATH, not /bin/sh, when  spawning an external command (not applicable to Windows port). @@ -123,26 +126,19 @@  releases are contained in this release (see release notes to them for  details).   - * The progress indicator for a large "git checkout" was sent to - stderr even if it is not a terminal. - (merge e9fc64c ap/checkout-no-progress-for-non-tty later to maint). + * When "git rebase" is fed a bad revision name (either as base, or + with the --onto option), it did not correctly give the command line + parameter it had trouble with in its error message. + (merge 9180fea ef/maint-rebase-error-message later to maint).   - * A name taken from mailmap was copied into an internal buffer - incorrectly and could overun the buffer if it is too long. - (merge c9b4e9e jk/format-person-part-buffer-limit later to maint). + * "git rebase -p" used to pay attention to rebase.autosquash which + was wrong. "git rebase -p -i" should, but "git rebase -p" by + itself should not. + (merge 8a6dae1 vr/rebase-autosquash-does-not-imply-i later to maint).   - * A malformed commit object that has a header line chomped in the - middle could kill git with a NULL pointer dereference. - (merge a9c7a8a jk/pretty-commit-header-incomplete-line later to maint). - - * An author/committer name that is a single character was mishandled - as an invalid name by mistake. - (merge d9955fd jk/ident-split-fix later to maint). - - * "git grep -e '$pattern'", unlike the case where the patterns are - read from a file, did not treat individual lines in the given - pattern argument as separate regular expressions as it should. - (merge ec83061 rs/maint-grep-F later to maint). + * "git submodule init" used to report "registered for path ..." + even for submodules that were registered earlier. + (cherry-pick c1c259e jl/submodule-report-new-path-once later to maint).    * "git diff --stat" used to fully count a binary file with modified  execution bits whose contents is unmodified, which was not quite 
diff --git a/git.txt b/git.txt index c543213..f86ce05 100644 --- a/git.txt +++ b/git.txt 
@@ -44,9 +44,10 @@  branch of the `git.git` repository.  Documentation for older releases are available here:   -* link:v1.7.10.2/git.html[documentation for release 1.7.10.2] +* link:v1.7.10.3/git.html[documentation for release 1.7.10.3]    * release notes for + link:RelNotes/1.7.10.3.txt[1.7.10.3],  link:RelNotes/1.7.10.2.txt[1.7.10.2],  link:RelNotes/1.7.10.1.txt[1.7.10.1],  link:RelNotes/1.7.10.txt[1.7.10].